/* ---- Mobile Sidebar ---- */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.active {
  display: block;
  opacity: 1;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  padding: 1.5rem;
  transition: right 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sidebar.active {
  right: 0;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0ece4;
}
.sidebar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1a1a1a;
  text-decoration: none;
}
.sidebar-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}
.sidebar-close:hover {
  background: #f5f0e8;
  color: #1a1a1a;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.sidebar-nav a {
  display: block;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.sidebar-nav a:hover {
  background: #f5f0e8;
  color: #1a1a1a;
}
.sidebar-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #f0ece4;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #999;
  text-align: center;
}
